Skip to content

Topic/web#24

Open
jkvaternik wants to merge 12 commits intodevelopmentfrom
topic/web
Open

Topic/web#24
jkvaternik wants to merge 12 commits intodevelopmentfrom
topic/web

Conversation

@jkvaternik
Copy link
Collaborator

Topic/web - Feat: Add home React files to Development

Jaime Kvaternik and others added 3 commits October 5, 2020 14:26
@liam923
Copy link
Owner

liam923 commented Jan 27, 2021

Could you rebase onto development to resolve the merge conflicts?

@@ -0,0 +1 @@
[{"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/index.js":"1","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/serviceWorker.js":"2","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/App.js":"3","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/hoc/Aux/Aux.js":"4","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/hoc/Layout/Layout.js":"5","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/containers/Manager/Manager.js":"6","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/Datum/Datum.js":"7","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/common/Button/Button.js":"8","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/NavigationBar/NavigationBar.js":"9","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/NavigationBar/NavigationItem/NavigationItem.js":"10"},{"size":503,"mtime":1610677110363,"results":"11","hashOfConfig":"12"},{"size":5086,"mtime":1601917748000,"results":"13","hashOfConfig":"12"},{"size":322,"mtime":1610436557208,"results":"14","hashOfConfig":"12"},{"size":59,"mtime":1609902397813,"results":"15","hashOfConfig":"12"},{"size":368,"mtime":1610505540956,"results":"16","hashOfConfig":"12"},{"size":3133,"mtime":1610683491380,"results":"17","hashOfConfig":"12"},{"size":1551,"mtime":1610683228596,"results":"18","hashOfConfig":"12"},{"size":243,"mtime":1610678378083,"results":"19","hashOfConfig":"12"},{"size":1099,"mtime":1610679362673,"results":"20","hashOfConfig":"12"},{"size":1666,"mtime":1610679218588,"results":"21","hashOfConfig":"12"},{"filePath":"22","messages":"23","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},"ajdv49",{"filePath":"25","messages":"26","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"27","messages":"28","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"29","messages":"30","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"31","messages":"32","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"33","messages":"34","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"35","messages":"36","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"37","messages":"38","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"40","messages":"41","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"42","messages":"43","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/index.js",[],["44","45"],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/serviceWorker.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/App.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/hoc/Aux/Aux.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/hoc/Layout/Layout.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/containers/Manager/Manager.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/Datum/Datum.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/common/Button/Button.js",[],["46","47"],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/NavigationBar/NavigationBar.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/NavigationBar/NavigationItem/NavigationItem.js",[],{"ruleId":"48","replacedBy":"49"},{"ruleId":"50","replacedBy":"51"},{"ruleId":"48","replacedBy":"52"},{"ruleId":"50","replacedBy":"53"},"no-native-reassign",["54"],"no-negated-in-lhs",["55"],["54"],["55"],"no-global-assign","no-unsafe-negation"] No newline at end of file
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file should be ignored

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Although it's ignored it needs to be removed from git

Comment on lines +11 to +44
case ('passwords'):
datum = (
<Aux>
<h4>{props.datum.url}</h4>
<p>{props.datum.username}</p>
</Aux>
);
break;
case ('creditcards'):
datum = (
<Aux>
<h4>{props.datum.desc}</h4>
<p>Ending with {props.datum.number.slice(props.datum.number.length - 4)}</p>
</Aux>
);
break;
case ('notes'):
datum = (
<Aux>
<h4>{props.datum.title}</h4>
</Aux>
);
break;
case ('codes'):
datum = (
<Aux>
<h4>{props.datum.desc}</h4>
<p>{props.datum.type}</p>
</Aux>
);
break;
default:
datum = null;
break;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code ends up switching over the types of datums in a lot of places. Maybe an enum or some sort of inheritance would be better?

@@ -0,0 +1 @@
[{"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/index.js":"1","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/serviceWorker.js":"2","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/App.js":"3","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/hoc/Aux/Aux.js":"4","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/hoc/Layout/Layout.js":"5","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/containers/Manager/Manager.js":"6","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/Datum/Datum.js":"7","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/common/Button/Button.js":"8","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/NavigationBar/NavigationBar.js":"9","/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/NavigationBar/NavigationItem/NavigationItem.js":"10"},{"size":503,"mtime":1610677110363,"results":"11","hashOfConfig":"12"},{"size":5086,"mtime":1601917748000,"results":"13","hashOfConfig":"12"},{"size":322,"mtime":1610436557208,"results":"14","hashOfConfig":"12"},{"size":59,"mtime":1609902397813,"results":"15","hashOfConfig":"12"},{"size":368,"mtime":1610505540956,"results":"16","hashOfConfig":"12"},{"size":3133,"mtime":1610683491380,"results":"17","hashOfConfig":"12"},{"size":1551,"mtime":1610683228596,"results":"18","hashOfConfig":"12"},{"size":243,"mtime":1610678378083,"results":"19","hashOfConfig":"12"},{"size":1099,"mtime":1610679362673,"results":"20","hashOfConfig":"12"},{"size":1666,"mtime":1610679218588,"results":"21","hashOfConfig":"12"},{"filePath":"22","messages":"23","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},"ajdv49",{"filePath":"25","messages":"26","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"27","messages":"28","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"29","messages":"30","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"31","messages":"32","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"33","messages":"34","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"35","messages":"36","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"37","messages":"38","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"40","messages":"41","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"42","messages":"43","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/index.js",[],["44","45"],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/serviceWorker.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/App.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/hoc/Aux/Aux.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/hoc/Layout/Layout.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/containers/Manager/Manager.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/Datum/Datum.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/common/Button/Button.js",[],["46","47"],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/NavigationBar/NavigationBar.js",[],"/Users/jaimekvaternik/Documents/projects/software/Kript/client/web/src/components/NavigationBar/NavigationItem/NavigationItem.js",[],{"ruleId":"48","replacedBy":"49"},{"ruleId":"50","replacedBy":"51"},{"ruleId":"48","replacedBy":"52"},{"ruleId":"50","replacedBy":"53"},"no-native-reassign",["54"],"no-negated-in-lhs",["55"],["54"],["55"],"no-global-assign","no-unsafe-negation"] No newline at end of file
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Although it's ignored it needs to be removed from git

Jaime and others added 2 commits January 29, 2021 18:16
Increase cloudbuild timeout from 10 to 20 minutes.
@liam923
Copy link
Owner

liam923 commented Feb 28, 2021

Can you rebase to resolve the conflicts and then squash? Once that's done it's ready to merge

@jkvaternik
Copy link
Collaborator Author

Yeah, let me finish my hw and I'll do it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants